home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1996 September
/
JCSM Shareware Collection (JCS Distribution) (September 1996).ISO
/
bother__
/
10860f01.ziv
/
TIE22.EXE
/
INST_NET.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-04-21
|
4KB
|
87 lines
Echo Off
REM ******************************************************
REM * File : InstallN.bat
REM * Author : Stephen Williams
REM * Date : 16 May 1993
REM * Revised:
REM * Purpose: Installation - TIE (Program & Data)
REM ******************************************************
if "%1" == "" goto help
if "%1" == "?" goto help
if "%1" == "A:" goto help
if "%1" == "a:" goto help
if "%1" == "B:" goto help
if "%1" == "b:" goto help
if "%1" == "A" goto FLOP
if "%1" == "a" goto FLOP
if "%1" == "B" goto FLOP
if "%1" == "b" goto FLOP
for %%f in (C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:,I:,i:) do if %1.==%%f. goto Help
for %%f in (J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:,P:,p:) do if %1.==%%f. goto Help
for %%f in (Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:) do if %1.==%%f. goto Help
for %%f in (X:,x:,Y:,y:,Z:,z:) do if %1.==%%f. goto Help
REM **************************
REM HARD DISK INSTALLATION
REM **************************
if not exist %1:\nul goto help
CLS
Echo **** Teamwork Information Exchange (TIE) Installation ****
Echo * *
Echo * Installing Program & Data Files on %1:\TIE *
Echo * *
Echo * *
Echo \/ \/
TIE_EXE %1:\TIE
TIE_DAT %1:\TIE
if not exist spelldic.exe goto nospell
SPELLDIC %1:\TIE
:NOSPELL
%1:
CD \TIE
Echo *** TIE Successfully Installed on %1:\TIE
Echo ***
Echo *** To run program type "TIE"
goto End
REM ************************************
REM FLOPPY DISK INSTALLATION
REM ************************************
:FLOP
REM TIE must be Installed on a Hard Disk.
REM
REM *****************************
REM Help For TIE INSTALLATION
REM *****************************
:Help
Cls
Echo +----------------------------------------------------------------+
Echo ! Teamwork Information Exchange (TIE) 2.2 !
Echo ! !
Echo ! Installation Help !
Echo ! !
Echo ! TIE must be installed on a HARD DISK drive !
Echo ! !
Echo ! The Inst_NET program decompresses program, and data files and !
Echo ! copies them to subdirectory \TIE on the designated drive. If !
Echo ! \TIE does not exist on the designated hard disk, it will be !
Echo ! created for you. !
Echo ! !
Echo ! Syntax for the command is: INST_NET d !
Echo ! where "d" is the hard disk drive letter where you want !
Echo ! the program installed. !
Echo ! !
Echo ! Examples: INST_NET C (Note no colon is typed) !
Echo ! INST_NET D !
Echo ! etc. !
Echo +----------------------------------------------------------------+
Echo ************* Program not installed. **********************
goto bad_end
REM ************************
REM End Of TIE Installation
REM ************************
:end
Echo =-=-=-=-=-=-=-=-=-=- INSTALLATION COMPLETE -=-=-=-=-=-=-=-=-=-=-=-=
:bad_end